home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / disk / misc / TransADF.lha / Source / dos_fprintf.c < prev    next >
C/C++ Source or Header  |  1997-12-06  |  234b  |  16 lines

  1. #include <exec/types.h>
  2. #include <clib/dos_protos.h>
  3.  
  4. #include <stdarg.h>
  5.  
  6. LONG FPrintf (BPTR fh, STRPTR format, ...)
  7. {
  8.   va_list va;
  9.   LONG n;
  10.   
  11.   va_start (va, format);
  12.   n = VFPrintf (fh, format, va);
  13.   va_end (va);
  14.   return n;
  15. }
  16.